Skip to main content

CoAuthoringChatSendMessage

Sends a message to the co-authoring chat.

Syntax

expression.CoAuthoringChatSendMessage(sText);

expression - A variable that represents a Api class.

Parameters

NameRequired/OptionalData typeDefaultDescription
sTextRequiredstringMessage text.

Returns

This method doesn't return any data.

Example

window.Asc.plugin.executeMethod ("CoAuthoringChatSendMessage", [Asc.scope.meeting_info], function (isTrue) {
if (isTrue)
alert ("Meeting was created");
else
alert ("Meeting was create, please update SDK for checking info about created meeting in chat.");
});